home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Compendium Deluxe 2
/
LSD and 17bit Compendium Deluxe - Volume II.iso
/
a
/
prog
/
misc
/
skoed1.14.lha
/
SkoEd
/
skoed.config
< prev
next >
Wrap
Text File
|
1994-07-07
|
2KB
|
95 lines
; SkoEd Config file example key configs
; Numeric keypad redefined
&0 = Set_Var(INSERT TOGGLE);
&1 = EndOfLine;
^&1 = EndOfFile;
&2 = Down;
&3 = Page_Down;
&4 = Left;
&6 = Right;
&7 = StartOfLine;
^&7 = StartOfFile;
&8 = Up;
&9 = Page_Up;
&. = Del;
; How to define function keys
$F1 = Complete_Word;
$F2 = Compile;
$F3 = Make;
$F4 = Goto_Buffer;
$F5 = Zoom;
^$F5 = Explode;
$F6 = Set_Env;
$F7 = Find;
$F8 = Reload;
$F9 = Load_File;
#$F9 = Load_File(OVER);
@$F9 = Load_File(NODUP);
$F0 = Save_File;
#$F0 = Save_File(NEW);
; I like these ones :-)
#UP = Page_Up;
#DOWN = Page_Down;
#LEFT = Word_Left;
#RIGHT = Word_Right;
; Example of creating cut and paste operations using the clipboard
PROC Cut;
Block_Clip;
Block_Delete;
CORP;
PROC Paste;
Clip_Block;
CORP;
#@C = Cut;
#@P = Paste;
; Odds and ends
#@< = Unindent_Block;
#@> = Indent_Block;
^P = Goto_Line;
^W = Find("END");
^Q = Find("end" NOCASE);
^Y = Del_Line;
^DEL = Del_Line;
@DEL = Del_EOL;
!LDEL = Word_Delete;
^T = Word_Delete;
@C = Block_Copy;
@D = Block_Delete;
@M = Block_Move;
@H = Block_Hide;
!LS = Split_Window;
!LD = Close_Window;
^S = Block_Begin;
^E = Block_End;
^KB = Block_Begin;
^KK = Block_End;
^KC = Block_Copy;
^KD = Block_Delete;
^KV = Block_Move;
HELP = Iconify;
@F = Find;
@A = Again;
^G = Goto_Line;
!LP = Prev_Buffer; Prev Buffer
!LF = Next_Buffer; Next Buffer
!RV = Clip_Block;
; variables setup
COMPILE = "s:compile";
C_DIR = "T:";
LINK = "m2lk -g -d -o work:execs/ skoed";
EXECUTE = "work:execs/skoed";
MAKE = "make -fSkoed.make";
CAPTIVECRSR = FALSE;
INSERT = TRUE;
INDENT = TRUE;
MEMORY = TRUE;
BACKUPS = FALSE;
TABSIZE = 8;
RELOAD = TRUE;
; for marks
CTRL ALT M = Mark;
CTRL ALT F = Next_Mark;
CTRL ALT B = Prev_Mark;
CTRL ALT G = Goto_Mark;
CTRL ALT D = Unmark;